home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************************************************
- *
- *
- * ObjectMacZapp -- a standard Mac OOP application template
- *
- *
- *
- * ZErrors.h -- utils for throwing exceptions
- *
- *
- *
- *
- *
- * © 1996, Graham Cox
- *
- *
- *
- *
- *************************************************************************************************/
-
-
- #pragma once
-
- #ifndef __ZERRORS__
- #define __ZERRORS__
-
-
- void FailNIL( void* aPtr );
- void FailOSErr( OSErr theErr );
- void Fail();
- void FailNILRes( void* aResPtr );
- void FailSilent();
- void FailParamErr( OSErr theErr );
- void FailNILParam( void* aPtr );
-
- #endif